home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / openvms.mak < prev    next >
Text File  |  1997-06-18  |  11KB  |  402 lines

  1. #    Copyright (C) 1997 Aladdin Enterprises. All rights reserved.
  2. # This file is part of Aladdin Ghostscript.
  3. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  4. # or distributor accepts any responsibility for the consequences of using it,
  5. # or for whether it serves any particular purpose or works at all, unless he
  6. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  7. # License (the "License") for full details.
  8. # Every copy of Aladdin Ghostscript must include a copy of the License,
  9. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  10. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  11. # under certain conditions described in the License.  Among other things, the
  12. # License requires that the copyright notice and this notice be preserved on
  13. # all copies.
  14.  
  15. # makefile for OpenVMS VAX and Alpha
  16. #
  17. # Please contact Jim Dunham (dunham@omtool.com) if you have questions.
  18. #
  19. # ------------------------------- Options ------------------------------- #
  20.  
  21. ###### This section is the only part of the file you should need to edit.
  22.  
  23. # on the make command line specify:
  24. #    make -fopenvms.mak "OPENVMS={VAX,ALPHA}" "DECWINDOWS={1.2,<blank>}"
  25.  
  26. # ------ Generic options ------ #
  27.  
  28. # Define the directory that will hold documentation at runtime.
  29.  
  30. GS_DOCDIR=GS_DOC
  31. #GS_DOCDIR=SYS$COMMON:[GS]
  32.  
  33. # Define the default directory/ies for the runtime
  34. # initialization and font files.  Separate multiple directories with ,.
  35.  
  36. GS_LIB_DEFAULT=GS_LIB
  37. #GS_LIB_DEFAULT=SYS$COMMON:[GS],SYS$COMMON:[GS.FONT]
  38.  
  39. # Define whether or not searching for initialization files should always
  40. # look in the current directory first.  This leads to well-known security
  41. # and confusion problems, but users insist on it.
  42. # NOTE: this also affects searching for files named on the command line:
  43. # see the "File searching" section of use.txt for full details.
  44. # Because of this, setting SEARCH_HERE_FIRST to 0 is not recommended.
  45.  
  46. SEARCH_HERE_FIRST=1
  47.  
  48. # Define the name of the interpreter initialization file.
  49. # (There is no reason to change this.)
  50.  
  51. GS_INIT=GS_INIT.PS
  52.  
  53. # Choose generic configuration options.
  54.  
  55. # Setting DEBUG=1 includes debugging features in the code
  56.  
  57. DEBUG=
  58.  
  59. # Setting TDEBUG=1 includes symbol table information for the debugger,
  60. # and also enables stack tracing on failure.
  61.  
  62. TDEBUG=
  63.  
  64. # Setting CDEBUG=1 enables 'C' compiler debugging and turns off optimization
  65. # Code is substantially slower and larger.
  66.  
  67. CDEBUG=
  68.  
  69. # Define the name of the executable file.
  70.  
  71. GS=GS
  72.  
  73. # Define the directory where the IJG JPEG library sources are stored,
  74. # and the major version of the library that is stored there.
  75. # You may need to change this if the IJG library version changes.
  76. # See jpeg.mak for more information.
  77.  
  78. JSRCDIR=[.jpeg-6a]
  79. JVERSION=6
  80.  
  81. # Define the directory where the PNG library sources are stored,
  82. # and the version of the library that is stored there.
  83. # You may need to change this if the libpng version changes.
  84. # See libpng.mak for more information.
  85.  
  86. PSRCDIR=[.libpng-0_96]
  87. PVERSION=96
  88.  
  89. # Define the directory where the zlib sources are stored.
  90. # See zlib.mak for more information.
  91.  
  92. ZSRCDIR=[.zlib-1_0_4]
  93.  
  94. # Note that built-in libpng and zlib aren't available.
  95.  
  96. SHARE_LIBPNG=0
  97. SHARE_ZLIB=0
  98.  
  99. # Define the configuration ID.  Read gs.mak carefully before changing this.
  100.  
  101. CONFIG=
  102.  
  103. # Define the path to X11 include files
  104.  
  105. X_INCLUDE=DECW$$INCLUDE
  106.  
  107. # ------ Platform-specific options ------ #
  108.  
  109. # Define the drive, directory, and compiler name for the 'C' compiler.
  110. # COMP is the full compiler path name.
  111.  
  112. COMP=CC
  113.  
  114. ifdef $(DEBUG)
  115. COMP:=$(COMP)/DEBUG/NOOPTIMIZE
  116. else
  117. COMP:=$(COMP)/NODEBUG/OPTIMIZE
  118. endif
  119.  
  120. ifeq "$(OPENVMS)"    "VAX"
  121. COMP:=$(COMP)/VAXC
  122. else
  123. COMP:=$(COMP)/DECC/PREFIX=ALL/NESTED_INCLUDE=PRIMARY
  124. endif
  125.  
  126. # Define any other compilation flags. 
  127. # Including defines for A4 paper size
  128.  
  129. ifdef $(A4_PAPER)
  130. COMP:=$(COMP)/DEFINE=(""A4"")"
  131. endif
  132.  
  133. # LINK is the full linker path name
  134.  
  135. ifdef $(LDEBUG)
  136. LINKER=LINK/DEBUG/TRACEBACK
  137. else
  138. LINKER=LINK/NODEBUG/NOTRACEBACK
  139. endif
  140.  
  141. # INCDIR contains the include files
  142. INCDIR=
  143.  
  144. # LIBDIR contains the library files
  145. LIBDIR=
  146.  
  147. # ------ Devices and features ------ #
  148.  
  149. # Choose the device(s) to include.  See devs.mak for details.
  150.  
  151. DEVICE_DEVS=x11.dev x11alpha.dev x11cmyk.dev x11mono.dev
  152. DEVICE_DEVS3=deskjet.dev djet500.dev laserjet.dev ljetplus.dev ljet2p.dev ljet3.dev ljet4.dev
  153. DEVICE_DEVS4=cdeskjet.dev cdjcolor.dev cdjmono.dev cdj550.dev pj.dev pjxl.dev pjxl300.dev
  154. DEVICE_DEVS6=bj10e.dev bj200.dev bjc600.dev bjc800.dev
  155. DEVICE_DEVS7=faxg3.dev faxg32d.dev faxg4.dev
  156. DEVICE_DEVS8=pcxmono.dev pcxgray.dev pcx16.dev pcx256.dev pcx24b.dev pcxcmyk.dev
  157. DEVICE_DEVS9=pbm.dev pbmraw.dev pgm.dev pgmraw.dev pgnm.dev pgnmraw.dev pnm.dev pnmraw.dev ppm.dev ppmraw.dev
  158. DEVICE_DEVS10=tiffcrle.dev tiffg3.dev tiffg32d.dev tiffg4.dev tifflzw.dev tiffpack.dev
  159. DEVICE_DEVS11=tiff12nc.dev tiff24nc.dev
  160. DEVICE_DEVS12=psmono.dev psgray.dev bit.dev bitrgb.dev bitcmyk.dev
  161. DEVICE_DEVS13=pngmono.dev pnggray.dev png16.dev png256.dev png16m.dev
  162. DEVICE_DEVS14=jpeg.dev jpeggray.dev
  163. DEVICE_DEVS15=pdfwrite.dev
  164.  
  165. # Choose the language feature(s) to include.  See gs.mak for details.
  166.  
  167. FEATURE_DEVS=level2.dev pdf.dev
  168.  
  169. # Choose whether to compile the .ps initialization files into the executable.
  170. # See gs.mak for details.
  171.  
  172. COMPILE_INITS=0
  173.  
  174. # Choose whether to store band lists on files or in memory.
  175. # The choices are 'file' or 'memory'.
  176.  
  177. BAND_LIST_STORAGE=file
  178.  
  179. # Choose which compression method to use when storing band lists in memory.
  180. # The choices are 'lzw' or 'zlib'.  lzw is not recommended, because the
  181. # LZW-compatible code in Ghostscript doesn't actually compress its input.
  182.  
  183. BAND_LIST_COMPRESSOR=zlib
  184.  
  185. # Choose the implementation of file I/O: 'stdio', 'fd', or 'both'.
  186. # See gs.mak and sfxfd.c for more details.
  187.  
  188. FILE_IMPLEMENTATION=stdio
  189.  
  190. # Define the name table capacity size of 2^(16+n).
  191.  
  192. EXTEND_NAMES=0
  193.  
  194. # Define the platform name.
  195.  
  196. PLATFORM=openvms_
  197.  
  198. # Define the name of the makefile -- used in dependencies.
  199.  
  200. MAKEFILE=openvms.mak
  201.  
  202. # Define the platform options
  203.  
  204. PLATOPT=
  205.  
  206. # Patch a couple of PC-specific things that aren't relevant to OpenVMS builds,
  207. # but that cause `make' to produce warnings.
  208.  
  209. BGIDIR=***UNUSED***
  210. PCFBASM=
  211.  
  212. # It is very unlikely that anyone would want to edit the remaining
  213. #   symbols, but we describe them here for completeness:
  214.  
  215. # Define the suffix for command files (e.g., null or .bat).
  216.  
  217. CMD=
  218.  
  219. # Define the directory separator character (\ for MS-DOS, / for Unix,
  220. # nothing for OpenVMS).
  221.  
  222. D=
  223.  
  224. # Define the string for specifying the output file from the C compiler.
  225.  
  226. O=/OBJECT=
  227.  
  228. # Define the extension for executable files (e.g., null or .exe).
  229.  
  230. XE=.exe
  231.  
  232. # Define the extension for executable files for the auxiliary programs
  233. # (e.g., null or .exe).
  234.  
  235. XEAUX=.exe
  236.  
  237. # Define the list of files that `make begin' and `make clean' remove.
  238.  
  239. BEGINFILES=OPENVMS.OPT OPENVMS.COM
  240.  
  241. # Define the C invocation for the ansi2knr program.  We don't use this.
  242.  
  243. CCA2K=
  244.  
  245. # Define the C invocation for auxiliary programs (echogs, genarch).
  246. # We don't need to define this separately.
  247.  
  248. CCAUX=
  249.  
  250. # Define the compilation command for `make begin'.  We don't use this.
  251.  
  252. CCBEGIN=
  253.  
  254. # Define the C invocation for normal compilation.
  255.  
  256. CC=$(COMP)/OBJECT=$@ $<
  257.  
  258. # Define the Link invocation.
  259.  
  260. LINK=$(LINKER)/MAP/EXE=$@ $^,OPENVMS.OPT/OPTION
  261.  
  262. # Define the ANSI-to-K&R dependency.  We don't need this.
  263.  
  264. AK=
  265.  
  266. # Define the syntax for command, object, and executable files.
  267.  
  268. OBJ=obj
  269.  
  270. # Define the current directory prefix for image invocations.
  271.  
  272. EXPP=
  273. EXP=MCR []
  274.  
  275. # Define the current directory prefix for shell invocations.
  276.  
  277. SH=
  278. SHP=
  279.  
  280. # Define generic commands.
  281.  
  282. CP_=$$ @COPY_ONE
  283.  
  284. # Define the command for deleting (a) file(s) (including wild cards)
  285.  
  286. RM_=$$ @RM_ONE
  287.  
  288. # Define the command for deleting multiple files / patterns.
  289.  
  290. RMN_=$$ @RM_ALL
  291.  
  292. # Define the arguments for genconf.
  293.  
  294. CONFILES=-p %s -o $(ld_tr)
  295.  
  296. # Define the generic compilation rules.
  297.  
  298. .suffixes: .c .obj .exe
  299.  
  300. .c.obj:
  301.     $(CC)
  302.  
  303. .obj.exe:
  304.     $(LINK)
  305.  
  306. # ---------------------------- End of options ---------------------------- #
  307.  
  308.  
  309. # ------------------- Include the generic makefiles ---------------------- #
  310.  
  311. include version.mak
  312. include gs.mak
  313. include lib.mak
  314. include jpeg.mak
  315. include libpng.mak
  316. include zlib.mak
  317. include devs.mak
  318. include int.mak
  319.  
  320. # Define various incantations of the 'c' compiler.
  321.  
  322. CCC=$(COMP)/OBJECT=$@ 
  323. CCCF=$(CCC)
  324. CCCJ=$(CCC)/INCLUDE=($(JSRCDIR))
  325. CCCZ=$(CCC)/INCLUDE=($(ZSRCDIR))
  326. CCCP=$(CCC)/INCLUDE=($(ZSRCDIR),$(PSRCDIR))
  327. CCINT=$(CCC)
  328. CCLEAF=$(CCC)
  329.  
  330. # ----------------------------- Main program ------------------------------ #
  331.  
  332. $(GS_XE): openvms gs.$(OBJ) $(INT_ALL) $(LIB_ALL)
  333.     $(LINKER)/MAP/EXE=$@ gs.$(OBJ),$(ld_tr)/OPTIONS,OPENVMS.OPT/OPTION
  334.  
  335. # OpenVMS.dev
  336.  
  337. openvms__=gp_vms.$(OBJ) gp_nofb.$(OBJ)
  338. openvms_.dev: $(openvms__)
  339.     $(SETMOD) openvms_ $(openvms__)
  340.  
  341. # Interpreter AUX programs
  342.  
  343. $(ECHOGS_XE):  echogs.$(OBJ) 
  344. $(GENARCH_XE): genarch.$(OBJ)
  345. $(GENCONF_XE): genconf.$(OBJ)
  346. $(GENINIT_XE): geninit.$(OBJ)
  347.  
  348. # Preliminary definitions
  349.  
  350. openvms: openvms.com openvms.opt
  351.     $$ @OPENVMS
  352.  
  353. openvms.com: append_l.com
  354.     $$ @APPEND_L $@ "$$ DEFINE/JOB X11 $(X_INCLUDE)"
  355.     $$ @APPEND_L $@ "$$ DEFINE/JOB GS_LIB ''F$$ENVIRONMENT(""DEFAULT"")'"
  356.     $$ @APPEND_L $@ "$$ DEFINE/JOB GS_DOC ''F$$ENVIRONMENT(""DEFAULT"")'"
  357. ifeq "$(OPENVMS)" "VAX"
  358.     $$ @APPEND_L $@ "$$ DEFINE/JOB C$$INCLUDE ''F$$ENVIRONMENT(""DEFAULT"")', DECW$$INCLUDE, SYS$$LIBRARY"
  359.     $$ @APPEND_L $@ "$$ DEFINE/JOB VAXC$$INCLUDE C$$INCLUDE"
  360.     $$ @APPEND_L $@ "$$ DEFINE/JOB SYS SYS$$LIBRARY"
  361. else
  362.     $$ @APPEND_L $@ "$$ DEFINE/JOB DECC$$USER_INCLUDE ''F$$ENVIRONMENT(""DEFAULT"")', DECW$$INCLUDE, DECC$$LIBRARY_INCLUDE, SYS$$LIBRARY"
  363.     $$ @APPEND_L $@ "$$ DEFINE/JOB DECC$$SYSTEM_INCLUDE ''F$$ENVIRONMENT(""DEFAULT"")', DECW$$INCLUDE, DECC$$LIBRARY_INCLUDE, SYS$$LIBRARY"
  364.     $$ @APPEND_L $@ "$$ DEFINE/JOB SYS "DECC$$LIBRARY_INCLUDE,SYS$$LIBRARY"
  365. endif
  366.  
  367. openvms.opt:
  368. ifeq "$(OPENVMS)" "VAX"
  369.     $$ @APPEND_L $@ "SYS$$SHARE:VAXCRTL.EXE/SHARE"
  370. endif
  371. ifeq "$(DECWINDOWS)" "1.2"
  372.     $$ @APPEND_L $@ "SYS$$SHARE:DECW$$XMLIBSHR12.EXE/SHARE"
  373.     $$ @APPEND_L $@ "SYS$$SHARE:DECW$$XTLIBSHRR5.EXE/SHARE"
  374.     $$ @APPEND_L $@ "SYS$$SHARE:DECW$$XLIBSHR.EXE/SHARE"
  375. else
  376.     $$ @APPEND_L $@ "SYS$$SHARE:DECW$$XMLIBSHR.EXE/SHARE"
  377.     $$ @APPEND_L $@ "SYS$$SHARE:DECW$$XTSHR.EXE/SHARE"
  378.     $$ @APPEND_L $@ "SYS$$SHARE:DECW$$XLIBSHR.EXE/SHARE"
  379. endif
  380.     $$ @APPEND_L $@ ""Ident="""""GS $(GS_DOT_VERSION)"""""
  381.  
  382. # The platform-specific makefiles must also include rules for creating
  383. # certain dynamically generated files:
  384. #    gconfig_.h - this indicates the presence or absence of
  385. #        certain system header files that are located in different
  386. #        places on different systems.  (It could be generated by
  387. #        the GNU `configure' program.)
  388. #    gconfigv.h - this indicates the status of certain machine-
  389. #        and configuration-specific features derived from definitions
  390. #        in the platform-specific makefile.
  391.  
  392. gconfig_.h: $(MAKEFILE) $(ECHOGS_XE)
  393.     $(EXP)echogs -w gconfig_.h -x 23 define "HAVE_SYS_TIME_H"
  394.  
  395. gconfigv.h: $(MAKEFILE) $(ECHOGS_XE)
  396.     $(EXP)echogs -w gconfigv.h -x 23 define "USE_ASM" 0
  397.     $(EXP)echogs -a gconfigv.h -x 23 define "USE_FPU" 1
  398.     $(EXP)echogs -a gconfigv.h -x 23 define "EXTEND_NAMES" 0$(EXTEND_NAME)
  399.